home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / PIL / ImageMode.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  1KB  |  31 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. _modes = { }
  5.  
  6. class ModeDescriptor:
  7.     
  8.     def __init__(self, mode, bands, basemode, basetype):
  9.         self.mode = mode
  10.         self.bands = bands
  11.         self.basemode = basemode
  12.         self.basetype = basetype
  13.  
  14.     
  15.     def __str__(self):
  16.         return self.mode
  17.  
  18.  
  19.  
  20. def getmode(mode):
  21.     if not _modes:
  22.         import Image as Image
  23.         for basemode, basetype, bands in Image._MODEINFO.items():
  24.             _modes[m] = ModeDescriptor(m, bands, basemode, basetype)
  25.         
  26.         _modes['LA'] = ModeDescriptor('LA', ('L', 'A'), 'L', 'L')
  27.         _modes['PA'] = ModeDescriptor('PA', ('P', 'A'), 'RGB', 'L')
  28.     
  29.     return _modes[mode]
  30.  
  31.